b36d3732dd19500d4428dc862ee95e539268a7d0,Core/src/org/sleuthkit/autopsy/timeline/datamodel/EventStripe.java,EventStripe,EventStripe,#EventCluster#EventCluster#,102

Before Change


        type = cluster.getEventType();
        description = cluster.getDescription();
        lod = cluster.getDescriptionLoD();
        eventIDs.addAll(cluster.getEventIDs());
        tagged.addAll(cluster.getEventIDsWithTags());
        hashHits.addAll(cluster.getEventIDsWithHashHits());
        this.parent = parent;

After Change


        type = cluster.getEventType();
        description = cluster.getDescription();
        lod = cluster.getDescriptionLoD();
        eventIDs = cluster.getEventIDs();
        tagged = cluster.getEventIDsWithTags();
        hashHits = cluster.getEventIDsWithHashHits();
        this.parent = parent;